home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / MAIL.XPI / bin / chrome / messenger.jar / content / messenger / msgHdrViewOverlay.xul < prev    next >
Encoding:
Extensible Markup Language  |  2005-12-22  |  9.9 KB  |  205 lines

  1. <?xml version="1.0"?>
  2. <!-- ***** BEGIN LICENSE BLOCK *****
  3.  Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.  
  5.  The contents of this file are subject to the Mozilla Public License Version
  6.  1.1 (the "License"); you may not use this file except in compliance with
  7.  the License. You may obtain a copy of the License at
  8.  http://www.mozilla.org/MPL/
  9.  
  10.  Software distributed under the License is distributed on an "AS IS" basis,
  11.  WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.  for the specific language governing rights and limitations under the
  13.  License.
  14.  
  15.  The Original Code is Mozilla Communicator client code, released
  16.  March 31, 1998.
  17.  
  18.  The Initial Developer of the Original Code is
  19.  Netscape Communications Corporation.
  20.  Portions created by the Initial Developer are Copyright (C) 1998-1999
  21.  the Initial Developer. All Rights Reserved.
  22.  
  23.  Contributor(s):
  24.  
  25.  Alternatively, the contents of this file may be used under the terms of
  26.  either of the GNU General Public License Version 2 or later (the "GPL"),
  27.  or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  28.  in which case the provisions of the GPL or the LGPL are applicable instead
  29.  of those above. If you wish to allow use of your version of this file only
  30.  under the terms of either the GPL or the LGPL, and not to allow others to
  31.  use your version of this file under the terms of the MPL, indicate your
  32.  decision by deleting the provisions above and replace them with the notice
  33.  and other provisions required by the GPL or the LGPL. If you do not delete
  34.  the provisions above, a recipient may use your version of this file under
  35.  the terms of any one of the MPL, the GPL or the LGPL.
  36.  
  37.  ***** END LICENSE BLOCK ***** -->
  38.  
  39. <!DOCTYPE overlay [
  40. <!ENTITY % msgHdrViewPopupDTD SYSTEM "chrome://messenger/locale/msgHdrViewPopup.dtd" >
  41. %msgHdrViewPopupDTD;
  42. <!ENTITY % msgHdrViewOverlayDTD SYSTEM "chrome://messenger/locale/msgHdrViewOverlay.dtd" >
  43. %msgHdrViewOverlayDTD;
  44. ]>
  45.  
  46. <?xml-stylesheet href="chrome://messenger/skin/messageHeader.css" type="text/css"?>
  47. <?xml-stylesheet href="chrome://messenger/skin/messageKeywords.css" type="text/css"?>
  48.  
  49. <overlay xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  50.          xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  51.  
  52. <script src="chrome://messenger/content/msgHdrViewAddresses.js"/>
  53. <script src="chrome://messenger/content/msgHdrViewOverlay.js"/>
  54.  
  55. <!-- drag and drop -->
  56. <script type="application/x-javascript" src="chrome://global/content/nsDragAndDrop.js"/>
  57. <script type="application/x-javascript" src="chrome://global/content/nsTransferable.js"/>
  58.  
  59. <stringbundleset id="stringbundleset">
  60.   <stringbundle id="bundle_messenger" src="chrome://messenger/locale/messenger.properties"/>
  61. </stringbundleset>
  62.  
  63. <popup id="emailAddressPopup" popupanchor="bottomleft"
  64.        onpopupshowing="goUpdateCommand('cmd_createFilterFromPopup');">
  65.   <menuitem label="&SendMailTo.label;"
  66.             accesskey="&SendMailTo.accesskey;"
  67.             oncommand="SendMailToNode(document.popupNode)"/>
  68.   <menuitem label="&CreateFilterFrom.label;"
  69.             accesskey="&CreateFilterFrom.accesskey;"
  70.             command="cmd_createFilterFromPopup"/>
  71.   <menuitem label="&AddToAddressBook.label;"
  72.             accesskey="&AddToAddressBook.accesskey;"
  73.             oncommand="AddNodeToAddressBook(document.popupNode)"/>
  74.   <menuitem label="&CopyEmailAddress.label;"
  75.             accesskey="&CopyEmailAddress.accesskey;"
  76.             oncommand="CopyEmailAddress(document.popupNode)"/>
  77. </popup>
  78.  
  79. <popup id="attachmentListContext" onpopupshowing="return onShowAttachmentContextMenu();">
  80.   <menuitem id="context-openAttachment" label="&openAttachmentCmd.label;" accesskey="&openAttachmentCmd.accesskey;"
  81.      oncommand="handleAttachmentSelection('openAttachment');"/>
  82.   <menuitem id="context-saveAttachment" label="&saveAsAttachmentCmd.label;" accesskey="&saveAsAttachmentCmd.accesskey;"
  83.      oncommand="handleAttachmentSelection('saveAttachment');"/>
  84.   <menuseparator/>
  85.   <menuitem id="context-detachAttachment" label="&detachAttachmentCmd.label;" 
  86.      oncommand="handleAttachmentSelection('detachAttachment');"/>
  87.   <menuitem id="context-deleteAttachment" label="&deleteAttachmentCmd.label;" 
  88.      oncommand="handleAttachmentSelection('deleteAttachment');"/>
  89.   <menuseparator/>
  90.   <menuitem id="context-saveAllAttachments" oncommand="HandleMultipleAttachments('saveAttachment', currentAttachments);" 
  91.     label="&saveAllAttachmentsCmd.label;" accesskey="&saveAllAttachmentsCmd.accesskey;"/>
  92.   <menuitem id="context-detachAllAttachments" oncommand="HandleMultipleAttachments('detachAttachment', currentAttachments);" 
  93.     label="&detachAllAttachmentsCmd.label;" accesskey="&detachAllAttachmentsCmd.accesskey;"/>
  94.   <menuitem id="context-deleteAllAttachments" oncommand="HandleMultipleAttachments('deleteAttachment', currentAttachments);" 
  95.     label="&deleteAllAttachmentsCmd.label;" accesskey="&deleteAllAttachmentsCmd.accesskey;"/>
  96. </popup>
  97.  
  98. <popup id="attachmentMenuList">
  99.   <menuseparator/>
  100.   <menuitem id="file-saveAllAttachments" label="&saveAllAttachmentsCmd.label;" 
  101.     accesskey="&saveAllAttachmentsCmd.accesskey;" oncommand="HandleMultipleAttachments('saveAttachment', currentAttachments);"/>
  102.   <menuitem id="file-detachAllAttachments" label="&detachAllAttachmentsCmd.label;" 
  103.     accesskey="&detachAllAttachmentsCmd.accesskey;" oncommand="HandleMultipleAttachments('detachAttachment', currentAttachments);" />
  104.   <menuitem id="file-deleteAllAttachments" label="&deleteAllAttachmentsCmd.label;" 
  105.     accesskey="&deleteAllAttachmentsCmd.accesskey;" oncommand="HandleMultipleAttachments('deleteAttachment', currentAttachments);" />
  106. </popup>
  107.  
  108. <tooltip id="attachmentListTooltip"
  109.          onpopupshowing="return FillInAttachmentTooltip(document.tooltipNode);"/> 
  110.  
  111. <hbox id="msgHeaderView" keywordrelated="true" originalclass="none" persist="state">
  112.  
  113. <grid id="collapsedHeaderView" class="header-part1" keywordrelated="true" originalclass="header-part1" flex="1" collapsed="true">
  114.   <rows>
  115.     <row flex="1"/>
  116.   </rows>
  117.   <columns>
  118.     <column class="collapsedToggleHdrBox">
  119.       <hbox align="start">
  120.         <image id="toggleHeaderView" class="collapsedHeaderViewButton"
  121.           onclick="ToggleHeaderView();"/>
  122.       </hbox>
  123.     </column>
  124.       
  125.     <column id="collapsedsubjectBox" collapsed="true" flex="1">
  126.       <hbox>
  127.         <label class="collapsedHeaderDisplayName" value="&subjectField.label;"/>
  128.         <textbox id="collapsedsubjectValue" keywordrelated="true" class="collapsedHeaderValue plain" originalclass="collapsedHeaderValue plain" readonly="true" crop="right" appendoriginalclass="true" flex="1"/>
  129.       </hbox>
  130.     </column>
  131.  
  132.     <column id="collapsedfromBox" collapsed="true">
  133.       <hbox align="start">
  134.         <label class="collapsedHeaderDisplayName" value="&fromField.label;"/>          
  135.         <mail-emailaddress id="collapsedfromValue" flex="1"/>
  136.       </hbox>
  137.     </column>
  138.  
  139.     <column id = "collapseddateBox" collapsed="true">
  140.       <hbox align="start">
  141.         <textbox id="collapseddateValue" keywordrelated="true" class="collapsedHeaderValue plain" originalclass="collapsedHeaderValue plain" appendoriginalclass="true" readonly="true"/>
  142.       </hbox>
  143.     </column>
  144.  
  145.     <column id="collapsedKeywordBox">
  146.       <hbox align="start">
  147.       <image id="collapsedKeywordImage" keywordrelated="true" originalclass="none"/>  
  148.       </hbox>
  149.     </column>
  150.  
  151.     <column id="collapsedAttachmentBox" collapsed="true">
  152.       <hbox align="start">
  153.       <image id="collapsedAttachment" class="collapsedAttachmentButton" onclick="ToggleHeaderView();" />  
  154.       </hbox>
  155.     </column>
  156.   </columns>
  157. </grid>
  158.  
  159. <hbox id="expandedHeaderView" class="header-part1" keywordrelated="true" originalclass="header-part1" flex="1" collapsed="true">
  160.  
  161.   <vbox id="expandedHeaders" flex="1">
  162.     <mail-toggle-headerfield keywordrelated="true" id="expandedsubjectBox" class="subjectvalue" label="&subjectField.label;" ontwistyclick="ToggleHeaderView();" collapsed="true"/>
  163.    
  164.     <mail-emailheaderfield id="expandedfromBox" label="&fromField.label;" collapsed="true"/>
  165.     <mail-headerfield id="expandedorganizationBox" label="&organizationField.label;" collapsed="true"/>
  166.     <mail-emailheaderfield id="expandedreply-toBox" label="&replyToField.label;" collapsed="true"/>
  167.  
  168.     <mail-headerfield keywordrelated="true" id="expandeddateBox" label="&dateField.label;" collapsed="true"/>
  169.  
  170.     <mail-multi-emailHeaderField id="expandedtoBox"  label="&toField.label;"  collapsed="true"/>
  171.     <mail-multi-emailHeaderField id="expandedccBox"  label="&ccField.label;"  collapsed="true"/>
  172.     <mail-multi-emailHeaderField id="expandedbccBox" label="&bccField.label;" collapsed="true"/>
  173.  
  174.     <mail-headerfield keywordrelated="true" id="expandednewsgroupsBox"  label="&newsgroupsField.label;" collapsed="true"/>
  175.     <mail-headerfield keywordrelated="true" id="expandedfollowup-toBox" label="&followupToField.label;" collapsed="true"/>
  176.     <mail-headerfield keywordrelated="true" id="expandeduser-agentBox"  label="&userAgentField.label;"  collapsed="true"/> 
  177.   </vbox>
  178.  
  179.   <vbox id="expandedKeywordBox">
  180.     <spacer flex="1"/>
  181.     <image id="expandedKeywordImage" keywordrelated="true" originalclass="none" />
  182.     <spacer flex="1"/>  
  183.   </vbox>
  184.    
  185.   <vbox id="editMessageBox" class="header-part1" keywordrelated="true" originalclass="header-part1" collapsed="true">
  186.     <spacer flex="1"/>
  187.     <button id="editMessageButton" label="&editMessage.label;" oncommand="MsgComposeDraftMessage()"/>
  188.     <spacer flex="1"/>
  189.   </vbox> 
  190.  
  191.   <vbox>
  192.     <spacer flex="1"/>
  193.     <image style="padding: 5px" id="fromBuddyIcon"/>
  194.     <spacer flex="1"/>
  195.   </vbox>
  196.  
  197.   <vbox id="expandedAttachmentBox" class="header-part1" keywordrelated="true" originalclass="header-part1" collapsed="true">
  198.     <label id="attachmentText" value="&attachmentsTree.label;" crop="right"/>
  199.     <listbox id="attachmentList" rows="3" seltype="multiple"
  200.               onclick="attachmentListClick(event);" ondraggesture="nsDragAndDrop.startDrag(event,attachmentAreaDNDObserver);" ondragover="nsDragAndDrop.dragOver(event, attachmentAreaDNDObserver);" context="attachmentListContext"/>
  201.   </vbox>
  202. </hbox>
  203. </hbox>
  204. </overlay>
  205.